home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Rekt_ayMæk / Source / Prefix / DebugPrefix.pch++ < prev    next >
Encoding:
Text File  |  2000-06-23  |  1.1 KB  |  32 lines

  1. // ===========================================================================
  2. //    DebugPrefix.pch++            ©1999-2000 Metrowerks Inc. All rights reserved.
  3. // ===========================================================================
  4. //    Source for precompiled header for PowerPlant headers
  5. //
  6. //    This file #includes most header files for the PowerPlant library,
  7. //    as well as most of the Toolbox headers used by the PowerPlant library
  8. //    with all debugging symbols defined.
  9.  
  10.  
  11.     // This same file works for PowerPC and 68K. We check the target
  12.     // at compile time and specify the appropriate output file name.
  13.     
  14. #if __POWERPC__
  15.     #pragma precompile_target "DebugPrefixHeadersPPC++"
  16. #else
  17.     #pragma precompile_target "DebugPrefixHeaders68K++"
  18. #endif
  19.  
  20. #pragma once on
  21.  
  22.     // Bring in common settings
  23. #include "PrefixCommon.h"
  24.  
  25.     // Bring in PP headers.
  26.  
  27. #define Debug_Signal
  28. //#define Debug_Throw        // Net classes throw exceptions to report various
  29.                             // conditions. Just keep things quiet. You can catch your
  30.                             // throws by using the Debugger's "Break on C++ Exception" option.
  31.  
  32. #include <PP_ClassHeaders.cp>